home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Directorty Opus 5 - Magellan
/
Opus 5 - Magellan.iso
/
Extras
/
GCC_ERROR
/
Example Makefiles
/
makefile_texi
< prev
Wrap
Makefile
|
1997-03-26
|
553b
|
39 lines
# 230397Emmy
# MakeFile mit GNU für die Doku von pPas
#
#
# Set Options
#
MAKEINFO = makeinfo 2>>T:MAKE.ERROROUT
OPTS = --amiga-39
#
# Global Options
#
SHELL = /gnu/bin/sh
#
# Hauptsection
#
ALL: LangRef.guide
######################
# Rules
######################
%.guide : %.texi
@echo "Texi-Compiling $< ..."
@$(MAKEINFO) -o $@ $< $(OPTS)
################################
# Docs
################################
LangRef.guide : langref.texi langref_program.texi
# EOF